home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr11 / pcv05n09.zip / MAKELIST.BAT < prev    next >
DOS Batch File  |  1993-06-13  |  1KB  |  33 lines

  1. @echo off
  2. cls
  3. echo.
  4. echo      ** MAKELIST **  Telephone Numbers File **  CREATE FILE or ADD NAMES
  5. echo ************************************************************************
  6. echo          Type names and phone numbers as indicated at bottom of screen.
  7. echo !!! For proper alphabetical sorting, begin last name at left bracket !!!
  8. echo            Press ENTER at the end of each line--the lines do not wrap.
  9. echo            Connect names and numbers with periods for easy reading.
  10. echo                         You can't edit lines once entered.
  11. echo       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  12. echo     *** Press ENTER then CTRL-Z (F6) then ENTER after the final line. ***
  13. echo         ____________________________________________________________
  14. echo                                   EXAMPLE
  15. echo  Information, all 800 numbers.................800-555-1212
  16. echo.  
  17. echo           ________________________________________________________
  18. echo.
  19. echo  [ Last Name, First Name......................[ Phone  OFFICE HOME or FAX
  20. copy con lst.$$$
  21. type lst.$$$ >> c:\batch\lst.txt
  22. del lst.$$$
  23. cls
  24. echo.
  25. echo.                   sorting names......... please wait.........
  26. sort < c:\batch\lst.txt > c:\batch\lst.sor
  27. cls
  28. echo.
  29. echo          lst.txt addition completed. type getme  to view lst.txt onscreen.
  30. echo.
  31. echo  ......... returning to DOS......
  32. echo.
  33.